home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 002a / mfbdemo.zip / PRINTME.BAT < prev    next >
DOS Batch File  |  1989-08-17  |  311b  |  14 lines

  1. echo off
  2. if %1 == P goto PRINTFILE
  3. if %1 == F goto COPYFILE
  4.  echo     You must specify an argument
  5.  echo         type PRINTME P to print instructions 
  6.  echo              PRINTME F to copy instructions to a file
  7. goto END
  8. :PRINTFILE
  9.  copy read?? prn
  10.  goto END
  11. :COPYFILE
  12.  copy read?? readme.txt
  13. :END
  14.